home *** CD-ROM | disk | FTP | other *** search
/ American Osteopathic Ass…tion Yearbook 2005 & 2006 / American Osteopathic Association Yearbook 2005 & 2006.iso / mac / app / sqlite / __init__.pyc (.txt) next >
Encoding:
Python Compiled Bytecode  |  2004-07-22  |  2.5 KB  |  47 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.3)
  3.  
  4. import _sqlite
  5. __revision__ = '$Revision: 1.20 $'[11:-2]
  6. threadsafety = 1
  7. apilevel = '2.0'
  8. paramstyle = 'pyformat'
  9. version = '0.5.0'
  10. version_info = (0, 5, 0)
  11. from main import DBAPITypeObject, Cursor, Connection, PgResultSet
  12. STRING = DBAPITypeObject(_sqlite.STRING)
  13. BINARY = DBAPITypeObject(_sqlite.BINARY)
  14. INT = DBAPITypeObject(_sqlite.INTEGER)
  15. NUMBER = DBAPITypeObject(_sqlite.INTEGER, _sqlite.FLOAT)
  16. DATE = DBAPITypeObject(_sqlite.DATE)
  17. TIME = DBAPITypeObject(_sqlite.TIME)
  18. TIMESTAMP = DBAPITypeObject(_sqlite.TIMESTAMP)
  19. ROWID = DBAPITypeObject()
  20. UNICODESTRING = DBAPITypeObject(_sqlite.UNICODESTRING)
  21. from _sqlite import Warning, Error, InterfaceError, DatabaseError, DataError, OperationalError, IntegrityError, InternalError, ProgrammingError, NotSupportedError
  22.  
  23. def connect(*args, **kwargs):
  24.     return Connection(*args, **kwargs)
  25.  
  26. from _sqlite import encode, decode
  27. Binary = encode
  28. __all__ = [
  29.     'connect',
  30.     'IntegrityError',
  31.     'InterfaceError',
  32.     'InternalError',
  33.     'NotSupportedError',
  34.     'OperationalError',
  35.     'ProgrammingError',
  36.     'Warning',
  37.     'Connection',
  38.     'Cursor',
  39.     'PgResultSet',
  40.     'apilevel',
  41.     'paramstyle',
  42.     'threadsafety',
  43.     'version',
  44.     'version_info',
  45.     'Binary',
  46.     'decode']
  47.